home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Games
/
SpriteFight 2002 v2.0a1
/
StringUtils.h
< prev
next >
Wrap
Text File
|
1993-05-23
|
462b
|
28 lines
///--------------------------------------------------------------------------------------
// StringUtils.h
///--------------------------------------------------------------------------------------
#ifndef __STRINGUTILS__
#define __STRINGUTILS__
#ifndef __TYPES__
#include <Types.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
void PStrCpy(Str255 srcStr, Str255 dstStr);
void PStrCat(Str255 srcStr, Str255 dstStr);
#ifdef __cplusplus
};
#endif
#endif